* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    /*border:1px solid gray;*/
}

a {
    text-decoration: none;
    color: #3c3c3c;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style: none;
}

.pd_0 {
    padding: 0;
}

.conatiner-fluid {
    padding-left: 0;
    padding-right: 0;
}

[v-cloak] {
    display: none;
}


/* 头部区域	 */
.bg_top_bar {
    height: 31px;

    background: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    line-height: 30px;
    font-size: 14px;
    color: #333;
}

.top_bar {
    display: flex;
    justify-content: space-between;
    color: rgba(0, 0, 0, .6);
}

.top_bar span a {
    text-decoration: none;
    color: rgba(0, 0, 0, .6);
}

.top_header {
    height: 118px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.top_bar_left span {
    margin-right: 10px;
}

.top_bar_right {

    display: flex;
    /*justify-content:flex-end;*/
    justify-content: space-between;
}

/*.top_bar_right span{*/
/*	margin:0 10px;*/
/*}*/
.top_bar_right span i {
    margin: 0 6px;
}

.choose_language {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /*width:200px;*/
}

.choose_language img {
    margin-bottom: 3px;
}


.logo {
    width: 300px;
    height: 100px;
    background: yellow;
    background: url(../images/logo_anyknowchem_86.png);
    background-repeat: no-repeat;
}

.logo h1 a {
    font-size: 0;
}

.search_area {
    flex-grow: 1;
    margin: 0 30px;

}

.search_area form {
    display: flex;
    width: 80%;
    border: 1px solid rgba(0, 0, 0, .38);
    border-radius: 2px;
    padding: 3px;


}

.select {
    /* border:2px solid rgba(0,0,0,.38); */
    background: transparent;
    border: none;
    outline: none;
    padding: 10px;

}

.search_area form input {
    border: none;
    outline: none;
    width: 300px;
    padding: 10px;
}

.search_area .btn_search {
    background: none;
    outline: none;
    border: none;
    margin-left: auto;
    margin-right: 15px;
    /*padding-right:10px;*/
}

.search_area .btn_search i {
    font-size: 1.2rem;
    color: rgb(56, 136, 229);
    padding-left: 2px;
    /* padding:3px; */
    transition: .6s;
}

.search_area .btn_search i:hover {
    font-size: 1.5rem;
    color: lightseagreen;
}

.cart {
    cursor: pointer;
    color: deepskyblue;
    transition: .3s;
}

.cart:hover {
    color: lightgreen;
    /*font-weight:bold;*/
    /*transform:scale(1.18);*/
    /*transform:rotate(360deg);*/
}

.cart span, .hotline span {
    margin: 0 10px;
}

/* 导航菜单 */
.nav_menu {
    /* background:rgb(59,98,160); */
    /* background-image:linear-gradient(to right, rgb(39,78,151), rgb(63,132,198)); */
    /* background-image:linear-gradient(30deg, rgb(39,78,151), rgb(126,187,58)); */
    background-image: linear-gradient(30deg, rgb(39, 78, 151), rgb(63, 132, 198));
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);

}

.nav-item {
    margin: 0 20px;
    transition: .6s;
    /* position:relative; */


}

.nav-item:hover {
    background: lightgreen;
}

/* .nav-item::after{
    content:'';
    position:absolute;
    left:0;
    width:100%;
    height:2px;
    background:lightgreen;
    transform:scale(0.5);
    transition:.6s;

} */
/* .nav-item:hover ::after{
    transform:scale(1);
} */

.navbar-toggler-icon {
    /*background:none;*/
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: rgba(255, 255, 255, .8);
}


.c_white {
    color: #fff;
}

.nav-link: {
    color: #fff !important;
}

.highlight_title {
    width: 200px;
    padding: 10px;
    /*padding-bottom:0;*/

    background: rgba(0, 0, 0, .3);
    font-size: 1.18rem;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.highlight_title .fa-navicon {
    margin: 0 6px;
}

.highlight_title .fa-caret-down {

    display: float;
    float: right;
    line-height: 32px;

}

.highlight_title a {
    display: inline-block;
    /*text-align:center;*/
    margin: 0 auto;
    color: rgba(255, 255, 255, .98);
    font-size: 1.08rem;
    transition: .3s;

}

.highlight_title a:hover {
    color: lightgreen;
}


.side_menu {
    position: absolute;
    top: 50px;
    left: 0;
    width: 200px;
    /*height:420px;*/
    /*background:rgba(0,0,0,.7);*/
    background: rgba(62, 97, 168, .9);

    padding: 10px;
    z-index: 99;
    opacity: 0;
    transform-origin: top;
    transform: scaleY(0);
    transition: .6s;
    /* display:none; */
}

.side_menu a {
    display: block;
    color: rgba(255, 255, 255, .9);
    font-size: 1.1rem;
    text-align: center;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    transition: .6s;

}

.side_menu a:hover {
    background: rgba(0, 0, 0, .3);
    padding-left: 10px;
}

.side_menu_in_index {
    opacity: 1;
    transform: scaleY(1);
    background: rgba(40, 62, 112, .8);
    /*height:36vh;*/
    height: calc(36vh + 2px);
    /*height:308px;*/
}

.highlight_title:hover .side_menu {
    opacity: 1;
    transform: scaleY(1);
}

.carousel-item {
    height: 36vh;
}

.carousel-item img {
    height: 100%;
}


/*轮播箭头*/
.carousel-control-next, .carousel-control-prev {
    background: none;
    border: none;
}

/* 优势产品 */
.product_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(0, 0, 0, .08);
    margin-top: 20px;
}

.product_area {
    overflow: hidden;
    padding-top: 20px;
}

.product_area .card {
    padding: 10px;
}

.product_area .card img:not(first-child) {
    height: 241px;
    margin: 3px;
}

/* 产品信息 */
.card .card-body .card-text {
    font-size: 0.8rem;
}

.card img {
    cursor: pointer;
    overflow: hidden;
    transition: .3s;
}

/*.card img:hover{*/
/*	transform:scale(1.03);*/
/*	box-shadow:0 6px 10px rgba(0,0,0,.38);*/
/*	overflow:hidden;*/
/*}*/
.w90 {
    width: 90%;
    margin: 30px 0;
}
.w98{
    width:98px;
}

/* 公司理念口号 */
.slogan_area {
    /* height:118px; */
    margin-top: 20px;
    padding: 20px 0;
    background: rgb(39, 117, 228);
    background-image: url(../images/bg_hexagons.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: rgba(255, 255, 255, .6);

}

/* 分段标题 */
.segment_title {
    padding-bottom: 10px;
    border-bottom: 1px dotted rgba(0, 0, 0, .6);
}

.segment_photo {
    min-width:360px;
    overflow: hidden;
    cursor: pointer;
    transition: .3s;
}

.segment_photo:hover {
    transform: scale(1.03);
}


/* 关于我们 */

.about_us {
    padding: 20px 0;

}

.about_us_photo img {
    width: 100%;
}

.text_indent {
    text-indent: 2rem;
}

/* 新闻列表 */
.news_area {
    padding: 20px;
}

.news_area .row:not(last-child) {
    padding: 20px 0;
    /*border-bottom:1px dotted rgba(0,0,0,.3);*/
}

.news_area .news_title {
    border-bottom: 1px dotted rgba(0, 0, 0, .08);
}

/* 页脚 */
.footer_area {
    background-image: url(../images/bg_02.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.footer {
    display: flex;

    margin-top: 20px;
    padding: 20px 0;
    margin-bottom: 0;

}

.footer_company img {
    height: 50px;
    mix-blend-mode: multiply;
}

.footer_company_info, .footer_menu_item {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, .6);
}

.footer_nav {
    display: flex;
    flex-wrap: wrap;
}

.footer_link {
    text-decoration: none;
    color: rgba(0, 0, 0, .6);
    transition: .3s;
}

.footer_link:hover {
    text-decoration: none;
    color: #1e73be;
    padding-left: 6px;
}

.footer_menu {
    flex: 1;
    padding-left: 20px;
    border-left: 1px solid rgba(0, 0, 0, .08);
}

.footer_menu .footer_menu_title {
    margin-bottom: 10px;
}

/* 版权	 */
.copyright_bg {

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, .6);

    /* background:rgba(39,68,112,.88); */
    /* background-image:linear-gradient(30deg, rgb(39,78,151), rgb(63,132,198)); */
    background: rgba(39, 78, 151, .78);
    border-top: 1px solid rgba(112, 172, 60, .6);

}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* color:rgba(0,0,0,.6); */

}

.copyright a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    padding: 0 6px;
}

.copyright a:hover {
    color: rgba(255, 255, 255, .98);
    background: lightgreen;
    border-radius: 2px;
}

.copyright_tech_support {
    display: flex;
    justify-content: flex-end;
}

.table-responsive {
    /*padding-left:15px;*/
    margin-left: 0px;
    overflow-x: hidden;
}

.my_table {
    font-size: 0.8rem;
    /*margin-left:15px;*/
    overflow: hidden;
}

.my_table tr:first-child {
    background: rgba(0, 0, 0, .028);
}

.table_detail {
    font-size: 0.8rem;
    overflow: hidden;
}

.product_list_header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 1rem;
    padding-right: 30px;
    padding-top: 20px;
}

.product_list_header span i {
    cursor: pointer;
    transition: .3s;
}

.product_list_header span i:hover {
    color: lightgreen;
}

.product_list_title {
    margin-top: 30px;
    font-weight: bold;
    font-size: 1.2rem;
    /*padding-left:10px;*/
    /*border-left:10px solid rgba(0,0,0,.2);*/
}

.product_character {
    border: 1px solid rgba(0, 0, 0, .18);
    margin-right: 0;
    display: flex;
    border-raidus: 3px;
    /*padding:10px;*/
}

.product_character li {
    padding: 10px;
}

.product_character li:first-child {
    font-weight: bold;
}

.product_character li a {
    text-decoration: none;
    display: inline-block;
    padding: 0 6px;
    border-raidus: 3px;
    transition: .3s;


}

.product_character li a:hover {
    background: lightgreen;
}

.cat_title {
    display: block;
    cursor: pointer;
    padding: 6px 0;
    padding-left: 6px;
    font-weight: bold;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    background: rgba(255, 255, 255, .96);
    transition: .3s;
}

.cat_title i {
    float: right;
    padding-right: 10px;
}

.sub_cat_title {
    display: block;
    font-size: 1rem;
    padding: 5px 20px;
    background: rgba(255, 255, 255, .93) !important;
    cursor: pointer;
    transition: .6s;

}

.cat_title:hover, .sub_cat_title:hover {
    padding-left: 10px;
    border-left: 3px solid rgb(61, 95, 166);
    font-weight: bold;
    /*border-left:3px solid rgb(80,129,190);*/
    background: rgb(242, 249, 249) !important;
}

.grand_cat_title {
    display: block;
    padding: 0px 40px;
    /*margin:0;*/
    background: rgba(255, 255, 255, .96) !important;
    font-size: 0.8rem;
    cursor: pointer;
    transition: .6s;
    /*border:1px solid red;*/
}

.grand_ul {
    margin: 0;

}

.grand_cat_title:hover {
    padding-left: 30px;
    font-weight: bold;
    background: rgb(242, 249, 249) !important;

}

.left_cat li {
    list-style: none;
}

.text_red {
    color: red;
}

.btn_coa_download {
    font-size: 0.9rem;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.path {
    margin: 10px 0;
    margin-bottom: 30px;
}

.product_name_cn, .product_name, .product_parms {
    padding: 5px 10px;
    font-size: 1rem;
}

.product_name_cn {
    font-weight: bold;
    border: 1px solid rgba(0, 0, 0, .1);
}

.product_name {
    border: 1px solid rgba(0, 0, 0, .1);
    background: rgba(0, 0, 0, .09);
}

.hide_it {
    display: none;
}

.carousel-caption {
    color: rgba(255, 255, 255, .38);
    transform: translateY(-30%);
    /*background:rgba(0,0,0,.38);*/
}

.canvas_structure {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    transition: 1s;

}


.canvas_structure:hover {
    transform: rotateY(360deg);
}

.hot_products_a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hot_products {
    width: 70% !important;
    height: 70% !important;
}

.hot_products:hover {
    transform: scale(1.1);
}

.img_structure {
    transition: .3s;
}

.img_structure:hover {
    transform: scale(1.1);
}


.cart_qty_display {
    width: 20px;
}

.ul_p {
    margin-left: 2rem;
}

.ul_p li {
    padding-top: 10px;
}

.sidebar {
    position: fixed;
    bottom: 30px;
    right: 10px;
    z-index: 999;

}

.sidebar ul li {
    width: 60px;
    height: 60px;
    border-bottom: 0px;
    padding-top: 16px;
    text-align: center;
    position: relative;
    background: rgba(38, 151, 213, 0.3);
    margin-bottom: 10px;
    border-radius: 6px;
    transition: color .9s;

}

.service_icon {
    position: absolute;
    top: 0px;
    right: 50px;
    width: 218px;
    height: 60px;
    padding: 6px;
    background-color: #2c97d5;

    display: none;
    border: none;
    line-height: 50px;
    border-radius: 6px;
}


.sidebar ul li:hover {
    background-color: #2c97d5;
    color: #fff;
}

.sidebar ul li:hover a {
    color: #fff;
    text-decoration: none;
}

.sidebar ul li i {
    font-size: 30px;
    color: rgba(79, 127, 193, .98);
    transition: .3s;
}

.sidebar ul li i:hover {
    color: rgba(255, 255, 255, .9);
}

.sidebar li:hover .service_icon {
    display: block;
}

.card {
    margin: 10px 0;
    border: none;
    border: 1px solid lightgrey;
    border-radius: 5px;
}

.card-text {
    max-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    /*white-space: nowrap;*/
}

.card-img-top {
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background:rgb(232,249,253);*/

    border-bottom: 1px solid lightgrey;
    background-image: linear-gradient(to bottom, rgb(232, 249, 253), rgba(255, 255, 235, .1));

    /*background:rgba(36,85,157,.03);*/


    transition: .3s;

}

.card-img-top:hover {
    background: rgb(232, 249, 253);
    /*background-image:linear-gradient(to top, rgb(232,249,253),rgba(255,255,235,.1));*/
    /*background:rgba(144,238,144,.18);*/
}

.card-img-top img {
    width: 70%;
    margin-left: 15%;
    /*position: absolute;*/
    /*top: 8%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -8%);*/
    max-height: 150px;
    overflow: hidden;
}

.product_photo {
    display: flex;
    justify-content: center !important;
    align-items: center;
    padding: 10px;
    /*border:1px solid rgba(0,0,0,0.08);*/
    background-image: linear-gradient(to bottom, rgb(232, 249, 253), rgba(255, 255, 235, .1));


}

.product_photo img {
    width: 80%;
    margin-left: 10%;
}


.m_-20 {
    margin-top: -20px;
}

#my-canvas {
    width: 100% !important;
    height: 260px !important;
    padding: 10px;
!important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, .1);

}

.product_item {
    display: flex;
    align-items: center;
}

.product_item span {
    margin-right: 10px;
    padding: 0 6px;
    border: 1px dotted rgba(0, 0, 0, .23);
    border-radius: 3px;
    transition: .3s;
    cursor: pointer;

}

.product_item span:last-child {
    flex-grow: 1;
    margin-right: 0;
}

.product_item span:hover {

    background: lightgreen;


}

.bg_lightblue {
    background-image: linear-gradient(120deg, rgba(6, 176, 236, .9), rgba(43, 90, 155, .9));
}

.bg_Lightgrey {
    background-image: linear-gradient(120deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .01));
}

.product_info_brief {
    border: 1px solid lightgrey;
    padding: 10px;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, .03);
}

.title_between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title_between span a {
    font-size: 0.8rem;
}

.pagenation_area {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;

}

/*Swiper容器 */
.swiper-container {
    width: 100%;
    height: 320px; /* 设置轮播容器高度 */
    position: relative; /* 使得按钮的绝对定位相对于轮播容器 */
    margin: 0 auto;
}

.swiper-wrapper {
    height: 320px;
    width: 300%;
    display: flex;

    align-items: center;
    overflow-x: hidden;
}


.swiper-slide {

    box-sizing: border-box;
    flex: 0 0 auto;
    /*flex: 0 0 auto;*/
    /*margin:2px;*/


}

.swiper-slide img {
    width: 90%;
    height: 300px;
}

/* 左右切换按钮 */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%; /* 居中显示 */
    transform: translateY(-50%); /* 垂直居中 */
    width: 40px; /* 按钮宽度 */
    height: 40px; /* 按钮高度 */
    background-color: rgba(0, 0, 0, 0.5); /* 按钮背景颜色 */
    color: #fff; /* 按钮文字颜色 */
    border-radius: 50%; /* 圆角 */
    cursor: pointer; /* 光标样式为手型 */
    display: flex; /* 使用flex布局 */
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    transition: background-color 0.3s ease; /* 鼠标悬停时过渡效果 */
}

.swiper-button-next {
    right: 0;
}

/* 左右切换按钮图标 */
.swiper-button-prev::after,
.swiper-button-next::after {
    content: '❮'; /* 左箭头 */
    font-size: 24px; /* 图标大小 */
}

.swiper-button-next::after {
    content: '❯'; /* 右箭头 */

}

/* 鼠标悬停时按钮背景颜色变化 */
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


.tab-content .fade {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.tab-content .fade.show {
    opacity: 1;
}

.nav-tabs .nav-item .active {
    border-top: 6px solid rgba(62, 96, 167, .8);
}

.nav-tabs .nav-link {
    border-radius: 0;
}

.nav-tabs .nav-link:hover {
    border-bottom: none;
}

.nav-tabs {
    /* 		border-bottom:3px solid red; */
}

.nav-tabs .nav-item {
    margin: 0;
}

.cards-box {
    position: relative;
    overflow: hidden;

}

.cards-box .product_label {
    position: absolute;
    width: 60px;
    height: 20px;
    right: -10px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: red;
    font-size: 0.7rem;
    transform: rotate(45deg);
    padding: 3px;


}

.p_title {
    font-weight: bold;
}

.p_start {
    text-indent: 2rem;
}

.c_blue {
    color: dodgerblue;

}

.btn_control_area i {
    margin-bottom: 10px;
}

.product_detail_link {
    cursor: pointer;
    transition: .3s;
}

.product_detail_link:hover {
    background: lightgreen;
}


.m_container {
    width: 96%;
    font-size: 1rem;
    margin: 10px auto;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);

}

.m_content {
    padding: 10px;
    background-color: #ffffff;
    border-radius: 8px;
}

.mid_nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px; /* 列之间的间隔 */
    margin: 20px 0;

}


.mid_nav_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
    border: 1px solid lightgray;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 2px 4px 6px lightgray;
}


/*.footer_nav {*/
/*       !*position: fixed;*!*/
/*       !*position: sticky;*!*/
/*       width: 100%;*/
/*       height: 70px;*/
/*       position: fixed;*/
/*       bottom: 0;*/
/*       border-top: 2px solid lightgray;*/
/*       background: rgba(238, 238, 238, 1);*/
/*       padding: 10px 0;*/

/*   }*/

/*   .footer_nav_box {*/
/*       display: flex;*/
/*       justify-content: space-around;*/
/*       align-items: center;*/

/*   }*/

/*   .footer_nav_item {*/
/*       display: flex;*/
/*       flex-direction: column;*/
/*       align-items: center;*/
/*       justify-content: center;*/
/*       margin: 3px;*/

/*   }*/

/*   .footer_nav_item .footer_nav_link {*/
/*       font-size: 0.9rem !important;*/
/*       text-decoration: none;*/


/*   }*/

/*   .footer_nav_item i {*/
/*       !*background:yellow;*!*/
/*       !*width:40px;*!*/
/*       !*height:40px;*!*/
/*       !*border-radius:50%;*!*/
/*       display: flex;*/
/*       justify-content: center;*/
/*       align-items: center;*/
/*       font-size: 1.5rem;*/

/*   }*/

 .cke_notifications_area {
     display: none;
 }

 .font08{
        font-size:0.8rem;
    }
    .font09{
        font-size:0.9rem;
    }
    .center90{
        width:90%;
        margin:0 auto;
    }
    .flex_h_row{
        display:flex;
        justify-content:space-between;
        font-size:0.9rem;
        padding-top:10px;
        padding-bottom:10px;

    }


    .fixed_width_300 {
      width: 300px; /* 设置固定宽度 */
      white-space: nowrap; /* 防止换行 */
      overflow: hidden; /* 超出部分隐藏 */
      text-overflow: ellipsis; /* 超出部分显示省略号 */
    }

.nav_new{
     /*border:1px solid red;*/
     position:relative;
 }
 .nav_new::after{
     content:' NEW';
     color:red;

     font-weight:700;

     position:absolute;
     right:-2rem;
     top:0;
     padding:0;
     text-shadow:
                -1px -1px 1px orange,
                1px -1px 1px orange,
                -1px 1px 1px orange,
                1px 1px 1px orange; /* 四个方向的模糊阴影 */

 }

.search_area_on_index {
  width:50%;
}

.input-group-text {
    /*background-image: linear-gradient(120deg, rgba(6, 176, 236, .9), rgba(53, 63, 163, .9));*/
    background-image: linear-gradient(120deg, rgba(6, 176, 236, .9), rgba(29, 72, 113, .98));
    border-radius: 6px;
    color: white;
    transition: .9s;
    cursor: pointer;
}

.input-group-text:hover {
    background: lightgreen;

}


 #search_box{
    position:relative;
}
.tip_for_match{
    /*background:rgb(207,222,255);*/
    /*background-image: linear-gradient(120deg, rgba(6, 176, 236, .98), rgba(29, 72, 112, .98));*/
    background-image: linear-gradient(120deg, rgb(255,255,255), rgba(207,222,255, .8));
    border:4px solid rgb(207,222,255);


    z-index:999 !important;
    position:absolute;
    top:36px;
    left:0;
    width:100%;
    /*height:260px;*/
    border-radius:3px;
    padding:8px;
    font-size:13px;
    overflow:hidden;
    transition:.3s;
}
.tip_for_match li{
    /*background:lightcyan;*/
    /*border-radius:3px;*/
    transition:.6s;
}
.tip_for_match li:hover{
    background:lightgreen;
    color:dodgerblue;
    border-radius:3px;
    cursor:pointer;
    /*transition:.6s;*/

}

.tip_msg{
    background:lightgreen;
    border-radius:3px;
    padding:0 10px;
}


@media screen and (max-width: 767px) {
    .top_bar {
        font-size: 0.8rem;
    }

    .top_bar_left {
        display: none;
    }

    .top_bar_left span {
        padding: 0 2px;
    }

    .top_header .logo{
        display:none;
    }


    .logo_left{
        width:120px;
        margin-bottom:8px;
    }
    .link_right{
        padding:0 20px;
    }

    /*.search_form {*/
    /*	display: flex; !* 使用弹性盒子布局 *!*/
    /*	width: 100%; !* 宽度占满整行 *!*/
    /*}*/
    /*.search_form input[type="text"] {*/
    /*	flex: 1; !* 输入框占据剩余空间 *!*/
    /*}*/
    /*.search_form button[type="submit"] {*/
    /*	width: auto; !* 按钮宽度自动调整 *!*/
    /*}*/
    .hotline i {
        font-size: 1.2rem;
        margin-left: -25px;

    }

    .hotline span {
        display: none;
    }

    .login_info span {
        padding: 0 2px;
    }

    .promption .title {
        font-size: 1rem;
    }

    .card-body h5, p, del {
        font-size: 0.9rem;
    }

    .footer, .footer_links {
        font-size: 0.8rem;
    }

    .footer_menu li {
        font-size: 0.76rem;
    }

    .footer_copyright {
        font-size: 0.8rem;
        display: flex;
        flex-direction: column;

    }

    .side_bar {
        display: none;
    }

    .swiper, .promotion {
        display: none;
    }

    .search_area {
        font-size: 0.9rem;
    }

    .btn_structure_search {
        display: none;
    }

    .sidebar {
        display: none;
    }

    .cards-box {


    }

    .search_area {
        margin-left: -3px;
    }

    .navbar .highlight_title {
        background: none;
    }

    .side_menu_in_index {
        opacity: 0;
        transform: scaleY(0);
        background: rgba(40, 62, 112, .8);
        height: auto;
    }

    .swiper-slide {
        width: 238px !important;
        margin: 0 auto;
    }

    .cart-title a {
        font-size: 0.8rem;
    }

    .card-body .card-title a {

        font-size: 0.6rem !important;
        text-align: center;
    }

    .footer_menu_item a {
        font-size: 0.7rem !important;
    }

    .copyright {
        font-size: 0.9rem;
    }


}

@media screen and (min-width: 768px) and (max-width: 991px) {


}

@media screen and (min-width: 992px) and (max-width: 1199px) {


}

@media screen and (min-width: 1200px) {

}


/*!* 适应 PC 屏幕 *!*/
/*@media screen and (min-width: 992px) {*/
/*  .swiper-slide {*/
/*    width: calc(100% / 4);*/
/*  }*/
/*}*/

/*!* 适应手机屏幕 *!*/
/*@media screen and (max-width: 991px) {*/
/*  .swiper-slide {*/
/*    width: calc(100% / 2);*/
/*  }*/
/*}*/

